home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / doom / quake2.zip / QUEST091.ZIP / GO3.BAT < prev    next >
DOS Batch File  |  1996-10-16  |  899b  |  47 lines

  1. @echo off
  2. rem
  3. rem ******** Quest Quake startup batch file ***********
  4. rem ******** Entity-Only version
  5. rem
  6.     set CurDrive=c:
  7.     set CurDir=\prog\quest
  8.     set QuakeDrive=d:
  9.     set QuakeDir=\quake
  10.     set BSPPath=d:\quest\qbsp_win
  11.  
  12. md quest.tmp
  13. copy %1.map quest.tmp
  14. copy %1.bsp quest.tmp
  15. cd quest.tmp
  16.  
  17. rem ---------
  18. rem QBSP Step
  19. rem ---------
  20. %BSPPath%\qbsp -onlyents %1
  21. if errorlevel 1 goto BailQBSP
  22. goto OkQBSP
  23. :BailQBSP
  24. echo Error building BSP!  Hit SPACE to abort or wait to continue...
  25. wait 5
  26. if errorlevel 2 goto Bailout
  27.  
  28. :OkQBSP
  29. del %1.h1 > nul
  30. del %1.h2 > nul
  31. copy %1.bsp %QuakeDrive%%QuakeDir%\id1\maps > nul
  32. copy %1.bsp %CurDrive%%CurDir% > nul
  33. move %1.pts %QuakeDrive%%QuakeDir%\id1\maps > nul
  34. %QuakeDrive%
  35. cd %QuakeDir%
  36. quake +map %1
  37. %CurDrive%
  38. cd %CurDir%
  39. goto Exit
  40.  
  41. :Bailout
  42. cd..
  43. deltree /y quest.tmp
  44. :Exit
  45. deltree /y quest.tmp
  46. echo.
  47.